home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19941031-19941221 / 000443_MS-DOS_Kermit documentation file MSVIBM.VT -.msg < prev    next >
Text File  |  1995-07-31  |  2KB  |  48 lines

  1.  
  2.  CSI Ps $ }    DECSASD        Select active status display
  3.     Ps = 0 select main display
  4.     Ps = 1 select status line
  5.     Moves cursor to selected display area. This command will be ignored
  6.     unless the status line has been enabled by CSI 2 $ ~. When the status
  7.     line has been selected cursor remains there until the main display is
  8.     reselected by CSI 0 $ }.
  9.  
  10.  CSI Ps $ ~    DECSSDT        Select Status Line Type
  11.             Ps    meaning
  12.             0     no status line (empty)
  13.             1    indicator line (locally owned, Kermit default)
  14.             2    host-writable line
  15.  
  16.  Other extensions:
  17.  CSI 25; Pc f            VT320/VT102/H19 move cursor to 25th line.
  18.  CSI 25; Pc H            VT320/VT102/H19 move cursor to 25th line.
  19.                 Leave the same way as you went in.
  20.                 (These will disable Kermit's own status line.)
  21. ------------
  22. From the top of file MS-DOS Kermit source code file MSZIBM.ASM -
  23.  
  24. ; References:
  25. ;  "PT200 Programmers Reference Guide", 1984, Prime Computer # DOC 8621-001P
  26. ;  "Video Terminal Model H19, Operation", 1979, Heath Company # 595-2284-05
  27. ;  "VT100 User's Guide", 2nd ed., Jan 1979, DEC # EK-VT100-UG
  28. ;  "Rainbow 100+/100B Terminal Emulation Manual", June 1984, DEC # QV069-GZ
  29. ;  "Installing and Using The VT320 Video Terminal", June 1987,
  30. ;    DEC # EK-VT320-UU-001
  31. ;  "VT320 Programmer Reference Manual", July 1987, DEC # EK-VT320-RM-001
  32. ;  "VT330/340 Programmer Ref Manual", 2nd ed, May 1988,
  33. ;    Vol 1: Text programming DEC # EK-VT3XX-TP-002
  34. ;    Vol 2: Graphics programming DEC # EK-VT3XX-GP-002
  35. ;  "Programming the Display Terminal: Models D217, D413, and D463", Data
  36. ;    General Corp, 014-00211-00, 1991.
  37. ;  "Installing and Operating Your D216E+, D217, D413, and D463 Display
  38. ;    Terminals", Data General Corp, 014-002057-01, 1991.
  39. ;  "Dasher D470C Color Display Terminal, Programmer's Reference Manual",
  40. ;    Data General Corp, 014-001015, 1984.
  41. ;  "WY-50 Display Terminal Quick-Reference Guide", Wyse Technology,
  42. ;    Wyse No. 88-021-01, 1983.
  43.  
  44. ----------------------------------
  45.  
  46.     I don't have a VT420, nor the documentation on it ($$$); it takes
  47. both to emulate successfully.
  48.     Joe D.